home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-404.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(13846);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2004-0686");
  13.  
  14.  name["english"] = "RHSA-2004-404: samba";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated samba packages that fix a buffer overflow issue are now available.
  21.  
  22.   Samba provides file and printer sharing services to SMB/CIFS clients.
  23.  
  24.   The Samba team discovered a buffer overflow in the code used to support
  25.   the \'mangling method = hash\' smb.conf option. The Common Vulnerabilities
  26.   and Exposures project (cve.mitre.org) has assigned the name CAN-2004-0686
  27.   to this issue.
  28.  
  29.   All users of Samba should upgrade to these updated packages, which
  30.   contain an upgrade to Samba-2.2.10, which is not vulnerable to this
  31.   issue.
  32.  
  33.  
  34.  
  35.  
  36. Solution : http://rhn.redhat.com/errata/RHSA-2004-404.html
  37. Risk factor : High';
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Check for the version of the samba packages";
  42.  script_summary(english:summary["english"]);
  43.  
  44.  script_category(ACT_GATHER_INFO);
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  47.  family["english"] = "Red Hat Local Security Checks";
  48.  script_family(english:family["english"]);
  49.  
  50.  script_dependencies("ssh_get_info.nasl");
  51.  
  52.  script_require_keys("Host/RedHat/rpm-list");
  53.  exit(0);
  54. }
  55.  
  56. include("rpm.inc");
  57. if ( rpm_check( reference:"samba-2.2.10-1.21as.1", release:"RHEL2.1") )
  58. {
  59.  security_hole(0);
  60.  exit(0);
  61. }
  62. if ( rpm_check( reference:"samba-client-2.2.10-1.21as.1", release:"RHEL2.1") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67. if ( rpm_check( reference:"samba-common-2.2.10-1.21as.1", release:"RHEL2.1") )
  68. {
  69.  security_hole(0);
  70.  exit(0);
  71. }
  72. if ( rpm_check( reference:"samba-swat-2.2.10-1.21as.1", release:"RHEL2.1") )
  73. {
  74.  security_hole(0);
  75.  exit(0);
  76. }
  77.  
  78. if ( rpm_exists(rpm:"samba-", release:"RHEL2.1") )
  79. {
  80.  set_kb_item(name:"CAN-2004-0686", value:TRUE);
  81. }
  82.  
  83. set_kb_item(name:"RHSA-2004-404", value:TRUE);
  84.